From: shand@kneesaa.uk.xensource.com Date: Tue, 20 Jun 2006 10:04:58 +0000 (+0100) Subject: Make the credit scheduler the default - a number of bugs have been fixed X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15921^2~20 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=5cbaa75a9115ce57713aab502ec350ab3908e3dc;p=xen.git Make the credit scheduler the default - a number of bugs have been fixed (thanks to all for testing!) and now seems ready for more widespread usage. Signed-off-by: Steven Hand --- diff --git a/xen/common/schedule.c b/xen/common/schedule.c index 49384c7468..8d2f44be35 100644 --- a/xen/common/schedule.c +++ b/xen/common/schedule.c @@ -33,8 +33,8 @@ extern void arch_getdomaininfo_ctxt(struct vcpu *, struct vcpu_guest_context *); -/* opt_sched: scheduler - default to SEDF */ -static char opt_sched[10] = "sedf"; +/* opt_sched: scheduler - default to credit */ +static char opt_sched[10] = "credit"; string_param("sched", opt_sched); #define TIME_SLOP (s32)MICROSECS(50) /* allow time to slip a bit */